home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / asm / utils / cryptdevice / makefile < prev    next >
Makefile  |  1980-01-03  |  477b  |  26 lines

  1. #
  2. # Makefile for crypt.device
  3. #
  4. # Timo Rossi, 1991
  5. #
  6. # fdev.device was assembled with the A68k assembler by Charlie Gibbs.
  7. #
  8. # createfile was compiled with SAS/C 5.10a
  9. #
  10.  
  11. all:    crypt.device createfile
  12.  
  13. OBJ = cryptdev.o idea68k.o
  14.  
  15. crypt.device:    $(OBJ)
  16.     blink from $(OBJ) to crypt.device library lib:amiga.lib lib:debug.lib
  17.  
  18. cryptdev.o:    cryptdev.a
  19.     a68k -iasminc: cryptdev.a
  20.  
  21. idea68k.o: idea68k.a
  22.     a68k -iasminc: idea68k.a
  23.  
  24. createfile:    createfile.c
  25.     lc -v -csq -s -L createfile.c
  26.